d13fd2b267bbc948c369e8e01d465017b94c41b4,transports/jms/src/main/java/org/mule/transport/jms/JmsMessageDispatcher.java,JmsMessageDispatcher,getReplyToDestination,#Message#Session#MuleEvent#boolean#boolean#,405

Before Change


                tempReplyTo = event.getMessage().removeProperty(MuleProperties.MULE_REPLY_TO_PROPERTY);
                if (tempReplyTo != null)
                {
                    if (tempReplyTo.toString().startsWith("jms://"))
                    {
                        tempReplyTo = tempReplyTo.toString().substring(6);
                    }

After Change


                tempReplyTo = event.getMessage().removeProperty(MuleProperties.MULE_REPLY_TO_PROPERTY);
                if (tempReplyTo != null)
                {
                    int i = tempReplyTo.toString().indexOf("://");
                    if(i > -1)
                    {
                        tempReplyTo = tempReplyTo.toString().substring(i+3);
                    }